home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 32
/
Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso
/
Aminet
/
comm
/
tcp
/
hserv.lha
/
hserv
/
cgi-bin
/
decode.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1999-05-24
|
141b
|
10 lines
/*decode.rexx*/
parse arg msg
res=""
do while pos("%",msg)~=0
parse var msg a "%" c +2 msg
res = res || a || x2c(c)
end
return res || msg